home *** CD-ROM | disk | FTP | other *** search
- //=--------------------------------------------------------------------------=
- // Localize.ODL
- //=--------------------------------------------------------------------------=
- // ODL file for the control(s) and automation object(s) in this inproc server
- //
- // marcwan, 10/95
- //
- #include <olectl.h>
- #include "dispids.h"
-
- // can't include oaidl.h, so this will have to do
- //
- #define DISPID_NEWENUM -4
-
-
- //=--------------------------------------------------------------------------=
- // the libid for this type libray
- //
- [
- uuid(1edce660-240a-11cf-9d53-00aa003c9cb6),
- helpstring("Les Objets LocalizĪe"),
- lcid(0x40c),
- version(1.0)
- ]
- library LocalizeObjects {
-
- // standard imports
- //
- importlib("STDOLE32.TLB");
- importlib(STDTYPE_TLB);
-
- // primary dispatch interface for CLocalize control
- //
- [
- uuid(200b0620-240a-11cf-9d53-00aa003c9cb6),
- helpstring("Localize Control"),
- hidden,
- dual,
- odl
- ]
- interface ILocalize : IDispatch {
-
- // properties
- //
-
- // methods
- //
- [id(DISPID_ABOUTBOX), helpstring("Le Boite About")]
- void AboutBox(void);
- };
-
- // event interface for CLocalize controls ...
- //
- [
- uuid(2140c700-240a-11cf-9d53-00aa003c9cb6),
- helpstring("Event interface for Localize control"),
- hidden
- ]
- dispinterface DLocalizeEvents {
- properties:
- methods:
- };
-
- // coclass for CLocalize controls
- //
- [
- uuid(22907880-240a-11cf-9d53-00aa003c9cb6),
- helpstring("Localize control")
- ]
- coclass Localize {
- [default] interface ILocalize;
- [default, source] dispinterface DLocalizeEvents;
- };
- };
-
-
-
-